import { A } from "@vanjs/router"; import { Meta, Title } from "@vanjs/meta"; export const Page = () => { Title("404 Error: Page Not found"); Meta({ name: "description", content: "Page Not Found Description" }); return [

404 / Page Not Found

This is the about page

{" "} Go Home
, ]; };